home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3.2 / Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO / packet / n17jsrc / trace.h < prev    next >
C/C++ Source or Header  |  1991-07-07  |  3KB  |  85 lines

  1. #ifndef    _TRACE_H
  2. #define    _TRACE_H
  3.  
  4. #ifndef    _MBUF_H
  5. #include "mbuf.h"
  6. #endif
  7.  
  8. #ifndef    _IFACE_H
  9. #include "iface.h"
  10. #endif
  11.  
  12. /* Definitions for packet dumping */
  13.  
  14. /* Table of trace subcommands */
  15. struct tracecmd {
  16.     char *name;    /* Name of trace subcommand */
  17.     int val;    /* New setting for these bits */
  18.     int mask;    /* Mask of bits affected in trace word */
  19. };
  20. extern struct tracecmd Tracecmd[];    /* Defined in trace.c */
  21.  
  22. /* List of address testing and tracing functions for each interface.
  23.  * Entries are placed in this table by conditional compilation in main.c.
  24.  */
  25. struct trace {
  26.     int (*addrtest) __ARGS((struct iface *iface,struct mbuf *bp));
  27.     void (*tracef) __ARGS((FILE *,struct mbuf **,int));
  28. };
  29.  
  30. extern struct trace Tracef[];
  31.  
  32. /* In trace.c: */
  33. void dump __ARGS((struct iface *iface,int direction,unsigned type,struct mbuf *bp));
  34. void raw_dump __ARGS((struct iface *iface,int direction, struct mbuf *bp));
  35. void shuttrace __ARGS ((void));
  36.  
  37. /* In arcdump.c: */
  38. void arc_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  39. int arc_forus __ARGS((struct iface *iface,struct mbuf *bp));
  40.  
  41. /* In arpdump.c: */
  42. void arp_dump __ARGS((FILE *fp,struct mbuf **bpp));
  43.  
  44. /* In ax25dump.c: */
  45. void ax25_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  46. int ax_forus __ARGS((struct iface *iface,struct mbuf *bp));
  47.  
  48. /* In enetdump.c: */
  49. void ether_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  50. int ether_forus __ARGS((struct iface *iface,struct mbuf *bp));
  51.  
  52. /* In icmpdump.c: */
  53. void icmp_dump __ARGS((FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check));
  54.  
  55. /* In ipdump.c: */
  56. void ip_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  57.  
  58. /* In kissdump.c: */
  59. void ki_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  60. int ki_forus __ARGS((struct iface *iface,struct mbuf *bp));
  61.  
  62. /* In nrdump.c: */
  63. void netrom_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  64.  
  65. /* In pppdump.c: */
  66. void ppp_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  67.  
  68. /* In ripdump.c: */
  69. void rip_dump __ARGS((FILE *fp,struct mbuf **bpp));
  70.  
  71. /* In ripdump.c: */
  72. void rspf_dump __ARGS((FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check));
  73.  
  74. /* In slcompdump.c: */
  75. void sl_dump __ARGS((FILE *fp,struct mbuf **bpp,int check));
  76. void vjcomp_dump __ARGS((FILE *fp,struct mbuf **bpp,int unused));
  77.  
  78. /* In tcpdump.c: */
  79. void tcp_dump __ARGS((FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check));
  80.  
  81. /* In udpdump.c: */
  82. void udp_dump __ARGS((FILE *fp,struct mbuf **bpp,int32 source,int32 dest,int check));
  83.  
  84. #endif    /* _TRACE_H */
  85.